home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / doc / python-telepathy / README < prev   
Text File  |  2009-07-02  |  1KB  |  32 lines

  1. Requirements
  2. ------------
  3. telepathy-python requires dbus-python version >= 0.71; version >= 0.80 is
  4. recommended.
  5.  
  6. Using an uninstalled version
  7. ----------------------------
  8. Because telepathy-python contains generated code, the src directory
  9. is incomplete. To run this version of telepathy-python without installing it,
  10. you'll have to run ``python setup.py build`` and arrange for build/lib to be
  11. on your ``sys.path``, for instance:
  12.  
  13.     python setup.py build
  14.     PYTHONPATH=$PWD/build/lib python examples/call.py a.account b@example.com
  15.  
  16. (See ``examples/README`` for details of the .account files used by the
  17. examples.)
  18.  
  19. Server Base Classes
  20. -------------------
  21. telepathy.server implements base classes and mixins for implementing all of
  22. the D-Bus interfaces in Telepathy. Many methods are abstract and they are
  23. intended to be overridden in mixins for the concrete implementations, but some
  24. perform housekeeping for you and maintain structures with some of the state
  25. necessary to answer Get* calls. The API for implementing managers needs some
  26. fixing really.
  27.  
  28. Client Library
  29. --------------
  30. The client lib in telepathy.client has some base classes to help with
  31. implementing a client in python.
  32.